/* Section Video Prestasi */
.video-section {
  padding: 180px 20px 50px; /* atas 80px, kanan-kiri 20px, bawah 50px */
  text-align: center;
  background: #ffffff;
}

/* Grid Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Tombol Selengkapnya */
.more-videos {
  text-align: center;
  margin-top: 20px;   /* kecilkan jarak atas */
  margin-bottom: 80px; /* tetap ada jarak bawah biar tidak mepet footer */
}

.yt-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000; /* merah khas YouTube */
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255,0,0,0.3);
  transition: all 0.3s ease;
}

.yt-button i {
  font-size: 20px;
}

.yt-button:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,0,0,0.5);
}

@media (max-width: 600px) {
  .video-section {
    padding: 90px 15px 30px; /* atas lebih kecil */
    margin: 0 auto;          /* reset margin biar tidak dobel */
  }
}